home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / AppKit / Graph / Makefile.preamble < prev    next >
Makefile  |  1993-01-22  |  535b  |  19 lines

  1. #
  2. # Makefile Preamble
  3. #
  4.  
  5. PRECOMPS = Graph.p
  6.  
  7. # declare our other ofiles that the yacc and lex modules produce
  8. # vers.o contains current version info from the vers_string command
  9. OTHER_OFILES = expr.o token.o vers.o
  10.  
  11. # tell yacc to produe a y.tab.h file, which has #defines for the token types
  12. YFLAGS = -d
  13.  
  14. # junk produced by yacc and lex that is removed when we make clean
  15. # vers.c is produced by the vers_string command.
  16. OTHER_GARBAGE = expr.m y.tab.h token.m vers.c
  17.  
  18. # Uncomment this to find memory leaks
  19. # OTHER_LIBS = -lMallocDebug